CreateIsolatedWorldRequest

data class CreateIsolatedWorldRequest(frameId: FrameId, worldName: String?, grantUniveralAccess: Boolean?)

Represents request frame that can be used with Page#createIsolatedWorld operation call.

Creates an isolated world for the given frame.

See also

Constructors

CreateIsolatedWorldRequest
Link copied to clipboard
fun CreateIsolatedWorldRequest(frameId: FrameId, worldName: String? = null, grantUniveralAccess: Boolean? = null)

Properties

frameId
Link copied to clipboard
val frameId: FrameId
Id of the frame in which the isolated world should be created.
grantUniveralAccess
Link copied to clipboard
val grantUniveralAccess: Boolean? = null
Whether or not universal access should be granted to the isolated world.
worldName
Link copied to clipboard
val worldName: String? = null
An optional name which is reported in the Execution Context.

Sources

jvm source
Link copied to clipboard